home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 June / Software of the Month Club 1996 June.iso / mac / ISO9660 / DOS / GAMES / CHICKEN / SETSOUND.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-02-03  |  739 b   |  30 lines  |  [TEXT/hscd]

  1. @echo off
  2. REM =============================================================
  3. REM This is the setsound program. Do NOT change it, or the setsound
  4. REM program may not work correctly.
  5. REM =============================================================
  6.  
  7. if not exist SETD.EXE goto WrongDir
  8. cls
  9.  
  10. SETD > nul
  11. if ERRORLEVEL 1 goto NoDriver
  12. copy SOUNDRV.COM SOUNDRV.AWC > nul
  13. del SOUNDRV.COM > nul
  14. echo Adventures With Chickens is ready to rumble!
  15. echo Type in CHICKEN and press ENTER to play.
  16. goto Done
  17.  
  18. :NoDriver
  19. copy NOSOUND.COM SOUNDRV.AWC > nul
  20. echo Adventures With Chickens is ready to go!
  21. echo Type in CHICKEN and press ENTER to play.
  22. goto Done
  23.  
  24. :WrongDir
  25. echo Couldn't find sound setup utility.
  26.  
  27. :Done
  28. echo.
  29. echo.
  30.